|
菜单位置 |
---|
Draft → Arc |
所属工作台 |
Draft, Arch |
默认快捷键 |
A R |
版本介紹 |
0.7 |
参阅 |
Draft Circle, Draft Ellipse |
底图绘弧工具通过用户输入的4个点(圆的中心点、半径、第一个点与最后一个点),或通过拾取切线,或上述若干组合来在当前的work plane上创建一个圆弧。它将根据Draft Tray中的Draft Linestyle来创建圆弧。
A Draft Arc is in fact a Draft Circle with a 数据First Angle that is not the same as its 数据Last Angle.
通过中心点、半径、弧的初始点、弧的结束点这4点所定义的圆弧
See also: Draft Tray, Draft Snap and Draft Constrain.
The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).
通过双击树状视图(tree view)中的元素或点击 Draft Edit按钮即可编辑对应弧。届时,您就可将中心点移动到预定的新位置。
See also: Preferences Editor and Draft Preferences.
弧对象享有Draft Circle中的所有属性,但是有些属性仅对圆形而言才有意义。
示例:
import FreeCAD as App
import Draft
doc = App.newDocument()
arc1 = Draft.make_circle(200, startangle=0, endangle=90)
arc2 = Draft.make_circle(500, startangle=20, endangle=160)
arc3 = Draft.make_circle(750, startangle=-30, endangle=-150)
doc.recompute()